-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: suport entra id #210
base: master
Are you sure you want to change the base?
Conversation
@@ -41,6 +41,18 @@ def completion(self, messages: List[Dict[str, Any]], tools: Optional[List[Tool]] | |||
pass | |||
|
|||
|
|||
def get_lite_llm_config(api_key:Optional[str], base_url:Optional[str]) -> Dict[str, Any]: | |||
|
|||
if os.environ.get("AZURE_API_BASE"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will this work with the way we guide users to use azure openai?
https://docs.robusta.dev/master/configuration/ai-analysis.html#choosing-and-configuring-an-ai-provider
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should, This just avoids setting the api_key and base_url explicitly but litellm can read these though env vars, which is how we tell users to configure holmes.
No description provided.